\* Add Text below PLACE ORDER button to wait for processing to complete. Copy and Paste the contents of this file to a (PHP FILE) snippet
add_action( 'woocommerce_review_order_after_payment', 'add_custom_text_next_to_cc' );

function add_custom_text_next_to_cc() {
    echo '<p class="secure-payment-message"> Wait For Order Processing Circle To Complete </p>';
	echo '<p class="secure-payment-message"> Do Not Navigate Or Close Your Browser</p>';
	
}